-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding support for https cloning using github username and token prov… #117
Conversation
…ided instead of using ssh
models/models.go
Outdated
SSHURL string | ||
// CloneURL is the full HTTPS url for cloning. | ||
// ex. "https://github.com/atlantis/atlantis.git". | ||
CloneURL string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CloneURL
used for logging instead of using the URL with username and password in it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about keeping it clone url but naming the other one sanitizedcloneurl? No opinion, I like both.
models/models.go
Outdated
SSHURL string | ||
// CloneURL is the full HTTPS url for cloning. | ||
// ex. "https://github.com/atlantis/atlantis.git". | ||
CloneURL string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about keeping it clone url but naming the other one sanitizedcloneurl? No opinion, I like both.
nice! I'll give it another try |
Bootstrap is meant for a system that sets itself up. This command is more like a testing mode so I want to rename it to avoid confusion. Fixes hootsuite#129 and came out of hootsuite#117.
…ided instead of using ssh
Fixes: #110